Welcome![Sign In][Sign Up]
Location:
Search - knapsack dynamic

Search list

[Otherdynamic

Description: 动态规划解决0-1背包问题-0-1 knapsack problem
Platform: | Size: 1325 | Author: 陈国栋 | Hits:

[Other resourcedynamic knapsack

Description: 该程序用动态规划解决经典的背包问题,虽然它的效率与分支定界法比起来,还是有一定的差距,但它的简洁性却是无与伦比的.-the program with dynamic programming solution to the classic knapsack problem, although its efficiency and branch and bound over, there is still a certain gap, but its simplicity is incomparable.
Platform: | Size: 3494 | Author: 唐海浪 | Hits:

[JSP/Java0-1背包

Description: 0-1背包问题算法在java语言的实现程序-0-1 knapsack problem algorithm java language in the realization process
Platform: | Size: 1024 | Author: 成成 | Hits:

[Otherdynamic

Description: 动态规划解决0-1背包问题-0-1 knapsack problem
Platform: | Size: 1024 | Author: 陈国栋 | Hits:

[Data structs0-1背包的动态规划算法

Description: 动态规划0-1背包问题-Dynamic Programming 0-1 knapsack problem
Platform: | Size: 248832 | Author: gtop | Hits:

[Data structsdynamic knapsack

Description: 该程序用动态规划解决经典的背包问题,虽然它的效率与分支定界法比起来,还是有一定的差距,但它的简洁性却是无与伦比的.-the program with dynamic programming solution to the classic knapsack problem, although its efficiency and branch and bound over, there is still a certain gap, but its simplicity is incomparable.
Platform: | Size: 3072 | Author: 唐海浪 | Hits:

[GUI Develop背包问题的动态规划法算法(c++)

Description: 数据结构 算法设计与分析背包问题的动态规划法算法-data structure design and analysis of algorithms knapsack problem of dynamic programming algorithm
Platform: | Size: 1024 | Author: 孤星云 | Hits:

[Mathimatics-Numerical algorithmsmy0-1knapsack

Description: 给定n 个物品, 物品i重为wi 并且价值为 vi ,背包所能承载的最大容量为 W. 0-1 背包问题即是选择含有着最大总价值的物品的子集且它的容量 ≤W . 用动态规划实现-given n goods, items i weight of wi and value of vi, the backpack can carry a maximum capacity of W. 0-1 knapsack problem that is a choice with a maximum total value of the goods but a subset of the W capacity. Dynamic Programming
Platform: | Size: 1024 | Author: 叶黎 | Hits:

[Consolemyknapsack

Description: a) 0-1背包问题采用的是动态规划法,该算法思想简介如下: 有些问题常常没有办法把它们分成较小数目的子问题,在这种情况下,可以试着把问题分成必要多的子问题,每个子问题又可以分成数目不确定的必要多的子子问题,这样就会产生大量的子问题。如果分得的子问题界限不清,互相交叉,则在大量的子问题中会存在一些完全相同的子问题,因而在解这类问题时,将可能重复多次解同一个子问题。这种重复当然是不必要的,避免的方法可以在解决一个子问题后把它的解(包括其子子问题的解)保留下来,若遇到求解与之相同的子问题的时候,就可以把它找出来直接使用。为解问题而将它的子问题的解填入表中以待需要时直接查除了使用,这样的方法就是动态规划法。 b) 分数背包问题采用的是贪心选择法,该算法思想简介如下: 贪心算法总是作出在当前看来是最好的选择。也就是说,不从整体最优上加以考虑,它所做出的仅是在某种意义上的局部最优解。 -a) 0-1 knapsack problem is the use of dynamic programming method, the algorithm Thought as follows : some of the problems often no way to put them into a smaller number of sub-issues, in such circumstances, it attempts problem into the necessary number of sub- problems, every child that the problem can be divided into a number of uncertainties over the need for the children, this will have a lot of the problem. If the share of the sub- problems ill-defined, overlapping, in a large number of sub-issues there will be some identical son, thus the solution of such problems, it will be possible to repeat the same number of sub- problems solution. Such duplication is unnecessary. avoid the method can solve a problem for it to the solution (including his son, son of FNL) remain, if faced with
Platform: | Size: 1024 | Author: 林茜 | Hits:

[Data structs01knap_Dynamic_Programming

Description: 本文通过研究动态规划原理,提出了根据该原理解决0/1背包问题的方法与算法实现,并对算法的正确性作了验证.观察程序运行结果,发现基于动态规划的算法能够得到正确的决策方案且比穷举法有效.-through research paper on dynamic programming, According to the principle of resolving the 0/1 knapsack problem with the algorithm, the algorithm was verified the correctness. Observation running findings, based on dynamic programming algorithm can be the correct decision than a program exhaustive method effective.
Platform: | Size: 10240 | Author: 汤烈 | Hits:

[Data structsdongtaiguihua

Description: 动态规划算法的一个实例,解决0-1背包问题-dynamic programming algorithm an example to solve 0-1 knapsack problem
Platform: | Size: 1024 | Author: 刘永峰 | Hits:

[Other01BEIBAOdongtai

Description: 0-1背包问题的动态规划算法C语言实现.Windows系统下 Wintc环境编写-0-1 knapsack problem of the dynamic programming algorithm C language. Windows systems Wintc Central Habitat prepared
Platform: | Size: 1024 | Author: xieyixin | Hits:

[AlgorithmOI

Description: 用多种算法解决0-1背包问题,包括回朔法,动态规划,贪心算法等-algorithm used to solve a variety of 0-1 knapsack problem, including the retrospective method, dynamic programming, greedy algorithm
Platform: | Size: 431104 | Author: 王垂宇 | Hits:

[Data structsKnapsackProblem

Description: 背包问题是一个经典的动态规划模型。它既简单形象容易理解,又在某种程度上能够揭示动态规划的本质-Knapsack problem is a classic dynamic programming model. It is simple and easy to understand images, but also to some extent, able to reveal the essence of dynamic programming
Platform: | Size: 330752 | Author: 于维川 | Hits:

[Data structsbeibaowenti

Description: 动态规划求01背包问题. 动态规划求01背包问题.-Dynamic programming for knapsack problem 01. Dynamic programming for knapsack problem 01.
Platform: | Size: 1024 | Author: aa | Hits:

[Data structszero_one_question

Description: 算法中的经典问题:0——1 背包问题 在该程序中运用了动态规划算法成功解决了0——1背包问题-Classic problem of algorithm 0- 1 knapsack problem in the process use of dynamic programming algorithms succeeded in solving 0- 1 Knapsack Problem
Platform: | Size: 1024 | Author: shisir | Hits:

[Otherknapsack

Description: 0-1背包问题,典型的动态规划问题的实现过程-0-1 knapsack problem, a typical dynamic programming problem of the realization of the process! ! !
Platform: | Size: 1024 | Author: 刘艺 | Hits:

[Windows DevelopKnapSack

Description: 动态规划法解背包问题。 结果举例 1、输入: 背包容量:100 物品价值:60 100 120 物品重量:10 20 30-Dynamic programming solution of knapsack problem. Results for example 1、enter: backpack size: 100 items Value: 60 100 120 items Weight: 10 20 30
Platform: | Size: 296960 | Author: 陈晨 | Hits:

[AI-NN-PRknapsack

Description: 0—1背包问题的五种解法 1贪心法 2动态规划 3回溯 4分支限界 5遗传算法-0-1 knapsack problem greedy algorithm five Solution 1 2 3 back in 4 dynamic programming genetic algorithm branch and bound 5
Platform: | Size: 252928 | Author: tunzhao | Hits:

[Data structs01-knapsack-algorithm

Description: 01背包动态规划算法,实现01背包算法的一个简单例子-01 knapsack dynamic programming algorithm to achieve 01 knapsack algorithm is a simple example
Platform: | Size: 258048 | Author: 骆芷茵 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 13 »

CodeBus www.codebus.net